home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00056_Search.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  3.1 KB  |  99 lines

  1. on AthleteSearch aWord, aKeyWordList
  2.   put "DUCK0" && string(aWord) && string(aKeyWordList)
  3.   set vAthleteList to []
  4.   set vTempList to []
  5.   set vPath to 1
  6.   if (aWord = EMPTY) and (aKeyWordList = EMPTY) then
  7.     return vAthleteList
  8.   end if
  9.   if aWord = EMPTY then
  10.     set vPath to 0
  11.     set vAthleteList to searchForKeyWord(vTempList, aKeyWordList, vPath)
  12.     return vAthleteList
  13.   end if
  14.   if aKeyWordList = EMPTY then
  15.     set vAthleteList to searchForWord(aWord)
  16.     return vAthleteList
  17.   end if
  18.   set vTempList to searchForWord(aWord)
  19.   if vTempList = EMPTY then
  20.     return vAthleteList
  21.   end if
  22.   set vAthleteList to searchForKeyWord(vTempList, aKeyWordList, vPath)
  23.   return vAthleteList
  24. end
  25.  
  26. on searchForWord aWord
  27.   set vAthList to []
  28.   set vAthList to searchForWord2(aWord, 1, vAthList)
  29.   set vAthList to searchForWord2(aWord, 2, vAthList)
  30.   set vAthList to searchForWord2(aWord, 3, vAthList)
  31.   set vAthList to searchForWord2(aWord, 4, vAthList)
  32.   set vAthList to searchForWord2(aWord, 5, vAthList)
  33.   set vAthList to searchForWord2(aWord, 6, vAthList)
  34.   set vAthList to searchForWord2(aWord, 7, vAthList)
  35.   set vAthList to searchForWord2(aWord, 8, vAthList)
  36.   set vAthList to searchForWord2(aWord, 9, vAthList)
  37.   set vAthList to searchForWord2(aWord, 10, vAthList)
  38.   return vAthList
  39. end
  40.  
  41. on searchForWord2 aWord, aPart, vAthList
  42.   set vSearchChunk to the text of cast ("BioIndex" & aPart)
  43.   set vNumLines to the number of lines in vSearchChunk
  44.   set vValid to 0
  45.   set vSaveDel to the itemDelimiter
  46.   set the itemDelimiter to ":"
  47.   repeat with vI = 1 to vNumLines
  48.     if line vI of vSearchChunk contains aWord then
  49.       repeat with vII = 1 to the number of items in line vI of vSearchChunk
  50.         if item vII of line vI of vSearchChunk starts aWord then
  51.           set vValid to 1
  52.           exit repeat
  53.         end if
  54.       end repeat
  55.       if vValid then
  56.         set vTemp to char 2 to 4 of word 1 of line vI of vSearchChunk
  57.         add(vAthList, vTemp)
  58.         set vValid to 0
  59.       end if
  60.     end if
  61.   end repeat
  62.   set the itemDelimiter to vSaveDel
  63.   return vAthList
  64. end
  65.  
  66. on searchForKeyWord aAthleteList, aKeyWordList, aPath
  67.   set vTheList to []
  68.   set vSearchChunk to the text of cast "KeywordIndex"
  69.   set vLineNum to []
  70.   set vAthListSize to count(aAthleteList)
  71.   repeat with vI = 1 to vAthListSize
  72.     add(vLineNum, value(char 2 to 4 of getAt(aAthleteList, vI)))
  73.   end repeat
  74.   set vNumKeyWords to count(aKeyWordList)
  75.   if aPath = 1 then
  76.     repeat with vI = 1 to vAthListSize
  77.       repeat with vII = 1 to vNumKeyWords
  78.         if line getAt(vLineNum, vI) of vSearchChunk contains ":" & getAt(aKeyWordList, vII) then
  79.           set vTemp to char 2 to 4 of getAt(aAthleteList, vI)
  80.           add(vTheList, vTemp)
  81.           exit repeat
  82.         end if
  83.       end repeat
  84.     end repeat
  85.   else
  86.     set vNumLines to the number of lines in vSearchChunk
  87.     repeat with vI = 1 to vNumLines
  88.       repeat with vII = 1 to vNumKeyWords
  89.         if line vI of vSearchChunk contains ":" & getAt(aKeyWordList, vII) then
  90.           set vTemp to char 2 to 4 of word 1 of line vI of vSearchChunk
  91.           add(vTheList, vTemp)
  92.           exit repeat
  93.         end if
  94.       end repeat
  95.     end repeat
  96.   end if
  97.   return vTheList
  98. end
  99.